#!/bin/bash

#-------------------------------------------------------------------------------
# hscCopyToFloppy.sh
#
# This shell script is invoked to copy a file to a floppy diskette.
#
# Usage: hscCopyToFloppy <fullyQualifiedFileNameOnFixedDisk> <filenameOnFloppy>
#
# Return Codes:
# 0 - Copy was successful
# Value other than 0 - Copy was not successful
#-------------------------------------------------------------------------------

mcopy -o ${1} ${2}
